home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / sitemanagerUtils.js < prev    next >
Encoding:
Text File  |  2004-04-30  |  2.2 KB  |  101 lines

  1. function _GetString(name)
  2. {
  3.   if (!gStringBundle)
  4.   {
  5.     try {
  6.       var strBundleService =
  7.           Components.classes["@mozilla.org/intl/stringbundle;1"].getService(); 
  8.       strBundleService = 
  9.           strBundleService.QueryInterface(Components.interfaces.nsIStringBundleService);
  10.  
  11.       gStringBundle = strBundleService.createBundle("chrome://editor/locale/sitemanager.properties"); 
  12.  
  13.     } catch (ex) {}
  14.   }
  15.   if (gStringBundle)
  16.   {
  17.     try {
  18.       return gStringBundle.GetStringFromName(name);
  19.     } catch (e) {}
  20.   }
  21.   return null;
  22. }
  23.  
  24. function IsFileUrl(url)
  25. {
  26.   return (url.substr(0,4) == "file");
  27. }
  28.  
  29. function AllowEvents(tree, enabled)
  30. {
  31.   if (enabled)
  32.     tree.removeAttribute("allowevents");
  33.   else
  34.     tree.setAttribute("allowevents", false);
  35. }
  36.  
  37. function DEBUG(foo)
  38. {
  39.   if (debug)
  40.     dump( "SITEMANAGER: " + foo + "\n" );
  41. }
  42.  
  43. function _GetUrlForPasswordManager(publishData)
  44. {
  45.   if (!publishData || !publishData.publishUrl)
  46.     return false;
  47.  
  48.   var url;
  49.  
  50.   // For FTP, we must embed the username into the url for a site address
  51.   // XXX Maybe we should we do this for HTTP as well???
  52.   if (publishData.username && GetScheme(publishData.publishUrl) == "ftp")
  53.     url = _InsertUsernameIntoUrl(publishData.publishUrl, publishData.username,
  54.                                  window.top.GetSavedPassword(publishData));
  55.   else
  56.     url = publishData.publishUrl;
  57.  
  58.   // Strip off terminal "/"
  59.   var len = url.length;
  60.   if (len && url.charAt(len-1) == "\/")
  61.     url = url.slice(0, len-1);
  62.   
  63.   return url;
  64. }
  65.  
  66. function _InsertUsernameIntoUrl(urlspec, username, passwd)
  67. {
  68.   if (!urlspec || !username)
  69.     return urlspec;
  70.  
  71.   try {
  72.     var ioService = GetIOService();
  73.     var URI = ioService.newURI(urlspec, GetCurrentEditorFromSidebar().documentCharacterSet, null);
  74.     URI.username = username;
  75.     URI.password = passwd;
  76.     return URI.spec;
  77.   } catch (e) {}
  78.  
  79.   return urlspec;
  80. }
  81.  
  82. function _removeAllChildren(e)
  83. {
  84.   if (e)
  85.   {
  86.     var child = e.lastChild;
  87.     while (child)
  88.     {
  89.       var tmp = child.previousSibling;
  90.       e.removeChild(child);
  91.       child = tmp;
  92.     }
  93.   }
  94. }
  95.  
  96. function DirContainsFiles(url)
  97. {
  98.   var localFile = GetLocalFileFromURLSpec(url);
  99.   return (localFile.directoryEntries.hasMoreElements());
  100. }
  101.